home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************************************
- *
- *
- * ObjectMacZapp -- a standard Mac OOP application template
- *
- *
- *
- * ZShowOffStartUp.cpp -- start-up code (main)
- *
- *
- *
- *
- *
- * © 1996, Graham Cox
- *
- *
- *
- *
- *************************************************************************************************/
-
- #include "ZShowOffApplication.h"
- #include "MacZoop.h"
-
-
- void main();
-
- /*
-
- This example shows how you write your main() function. All you need to do is to create
- your ZApplication object (usually a subclass of ZApplication, though this is not required),
- assign it to the global gApplication, then call RunApplication. Customisation of application
- features is done by overriding the relevant methods, not usually by changing the way main()
- works.
-
- */
-
- void main()
- {
- gApplication = new ZShowOffApplication(); // make the application object...
-
- RunApplication(); // ...and run it.
- }